home *** CD-ROM | disk | FTP | other *** search
/ Programming Windows 95 with MFC / Programming Windows 95 with MFC (Microsoft Programming Series)(097-0001465)(1996).iso / CODE / Chap11 / MyWord / MainFrame.h < prev    next >
Encoding:
C/C++ Source or Header  |  1996-04-05  |  566 b   |  26 lines

  1. //***********************************************************************
  2. //
  3. //  MainFrame.h
  4. //
  5. //***********************************************************************
  6.  
  7. class CMainFrame : public CFrameWnd
  8. {
  9.     DECLARE_DYNCREATE (CMainFrame)
  10.  
  11. private:
  12.     CToolBar m_wndToolBar;
  13.     CStyleBar m_wndStyleBar;
  14.     CStatusBar m_wndStatusBar;
  15.  
  16.     BOOL CreateToolBar ();
  17.     BOOL CreateStyleBar ();
  18.     BOOL CreateStatusBar ();
  19.  
  20. protected:
  21.     afx_msg int OnCreate (LPCREATESTRUCT);
  22.     afx_msg void OnClose ();
  23.  
  24.     DECLARE_MESSAGE_MAP ()
  25. };
  26.